/*

Tooplate 2137 Barista

https://www.tooplate.com/view/2137-barista-cafe

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
    --white-color:                  #ffffff;
    --secondary-color:              #365EA6;
    --section-bg-color:             #b51e0a;
    --dark-color:                   #000000;
    --p-color:                      #ffffff;
  
    --body-font-family:             'Gill Sans', sans-serif;
  
    --h1-font-size:                 68px;
    --h2-font-size:                 46px;
    /* --h3-font-size:                 30px; */
    --h4-font-size:                 28px;
    --h5-font-size:                 24px;
    --h6-font-size:                 22px;
    --p-font-size:                  20px;
    --btn-font-size:                16px;
    --menu-font-size:               16px;
  
    --border-radius-large:          100px;
    --border-radius-medium:         20px;
    --border-radius-small:          10px;
  
    --font-weight-thin:             200;
    --font-weight-light:            300;
    --font-weight-normal:           400;
    --font-weight-bold:             700;
  }
  
  /*---------------------------------------
    TYPOGRAPHY               
  -----------------------------------------*/
  
  h2,
  /* h3, */
  h4,
  h5,
  h6 {
    color: var(--dark-color);
  }
  
  h1,
  h2,
  /* h3, */
  h4,
  h5,
  h6 {
    font-weight: var(--font-weight-bold);
  }
  
  h1 {
    font-size: var(--h1-font-size);
  }
  
  h2 {
    font-size: var(--h2-font-size);
  }
  h2{
    color: rgb(255, 255, 255);
    font-size: 45px;
    margin-bottom: 20px;
    text-transform: capitalize;
  }
  
  h2:hover{
  text-shadow:
  0 0 5px #0ef,
  0 0 10px #0ef,
  0 0 20px #0ef,
  0 0 40px #0ef,
  0 0 80px #0ef,
  0 0 90px #0ef,
  0 0 100px #0ef,
  0 0 150px #0ef;
  transition: .5s;
  }


  /* h3{
    font-size: var(--h3-font-size);
  } */
  
  h5 {
    font-size: var(--h5-font-size);
  }
  
  h6 {
    font-size: var(--h6-font-size);
  }
  
  p {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-light);
    text-shadow: 2px 2px rgba(0, 0, 0, 0.5);
  }
  
  ul li {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-light);
  }
  
  a, 
  button {
    touch-action: manipulation;
    transition: all 0.3s;
  }
  
  a {
    display: inline-block;
    text-decoration: none;
  }
  
  b,
  strong {
    font-weight: var(--font-weight-bold);
  }

   #section_2{
    background-color: #000;

   }

  .card{
    margin-top: 500px;
    display: inline-block;
    position: relative;
    width:350px;
    height: 400px;
    margin:20px;
    background: none;
}

.card .face{
    position:absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
    transition: .5s;
}

.card .front{
    transform:perspective(600px) rotateY(0deg);
    box-shadow: 0 5px 10px #000;
}

.card .front img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit:cover;
}

.card .front h3{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 55px;
    line-height:  45px;
    color: #f8f8f8;
    background: rgba(0,0,0,.4);
    text-align: center;
}

.card .back{
    transform: perspective(600px) rotateY(180deg);
    background: rgb(3,35,54);
    padding: 15px;
    color: #fffafa;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    box-shadow:0 5px 10px #000;
}

.card .back .link {
    border-top: solid 1px #f3f3f3;
    height: 50px;
    line-height: 50px;
}

.card .back .link a{
    color: #f3f3f3;
}

.card .back h3{
    font-size: 35px;
    margin-top: 20px;
    letter-spacing: 2px;
}

.card .back p{
  font-size: 15px;
    letter-spacing: 1px;
}

.card:hover .front {
    transform:perspective(600px) rotateY(180deg);
}

.card:hover .back {
    transform: perspective(600px) rotateY(360deg);
}
  
  
  
  /*---------------------------------------
    SECTION               
  -----------------------------------------*/
  .section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  
  .section-overlay {
    background-color: var(--dark-color);
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    opacity: 0.65;
  }
  
   .section-overlay + .container {
    position: relative;
    z-index: 22;
  } 
  
  .back-top-icon {
    font-size: var(--h2-font-size);
  }
  
  
  /*---------------------------------------
    TIMELINE               
  -----------------------------------------*/
  .timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .timeline::after {
    content: '';
    position: absolute;
    width: 5px;
    background-color: var(--white-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
  }
  
  .timeline-container {
    padding: 10px 40px;
    padding-top: 0;
    position: relative;
    background-color: inherit;
    width: 50%;
  }
  
  .timeline-container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -12px;
    background-color: var(--white-color);
    border: 5px solid #7c5c52;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
  }
  
  .timeline-container-left {
    left: 0;
  }
  
  .timeline-container-right {
    left: 50%;
  }
  
  .timeline-container-left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 9px;
    width: 0;
    z-index: 1;
    right: 25px;
    border: medium solid white;
    border-width: 20px 0 20px 20px;
    border-color: transparent transparent transparent white;
  }
  
  .timeline-container-right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 9px;
    width: 0;
    z-index: 1;
    left: 25px;
    border: medium solid white;
    border-width: 20px 20px 20px 0;
    border-color: transparent white transparent transparent;
  }
  
  .timeline-container-right::after {
    left: -13px;
  }
  
  .timeline-content {
    padding: 5px;
    /* background-color: var(--white-color); */
    position: relative;
    border-radius: var(--border-radius-medium);
  }
  
  @media screen and (max-width: 991px) {
    .timeline::after {
      left: 31px;
    }
  
    .timeline-container {
      width: 100%;
      padding-left: 70px;
      padding-right: 25px;
    }
  
    .timeline-container::before {
      left: 58px;
      border: medium solid white;
      border-width: 20px 20px 20px 0;
      border-color: transparent white transparent transparent;
    }
  
    .timeline-container-left::after, .timeline-container-right::after {
      left: 6px;
    }
  
    .timeline-container-right {
      left: 0%;
    }
  }
  
  
  /*---------------------------------------
    CUSTOM BUTTON               
  -----------------------------------------*/
  .custom-btn{
    background-color: white;
    color: black;
    border: 2px solid transparent;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: bold;
}

.custom-btn:hover{
    transform: scale(1.2);
    background-color: transparent;
    border: 2px solid white;
    color: white;
    transition: .4s;
    cursor:pointer;
}/*
  
  /*---------------------------------------
    NAVIGATION BAR & OFFCANVAS              
  -----------------------------------------*/
  .sticky-wrapper {
    position: absolute;
    z-index: 999999;
    top: 0;
    right: 0;
    left: 0;
  }
  
  .sticky-wrapper.is-sticky .container {
    background: rgba(0, 0, 0, 0.65);
    border-radius: var(--border-radius-medium);
    padding: 15px 30px;
  }
  
  .navbar {
    background: transparent;
    z-index: 999999;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .navbar .container {
    background: rgba(0, 0, 0, 0.35);
    border-radius: var(--border-radius-medium);
    padding: 15px 30px;
  }
  
  .navbar-brand,
  .navbar-brand:hover {
    font-size: var(--h4-font-size);
    font-weight: var(--font-weight-bold);
    display: block;
    color: var(--white-color);
  }
  
  .navbar .navbar-brand-image {
    filter: brightness(0) invert(1);
  }
  
  .navbar-brand-image {
    width: 48px;
    height: auto;
    margin-right: 10px;
  }
  
  .navbar .custom-btn {
    padding: 10px 20px;
  }
  
  .navbar-expand-lg .navbar-nav .nav-link {
    border-radius: var(--border-radius-large);
    margin: 10px;
    padding: 10px;
  }
  
  .navbar-nav .nav-link {
    display: inline-block;
    color: var(--white-color);
    font-size: var(--menu-font-size);
    font-weight: var(--font-weight-bold);
    padding-top: 15px;
    padding-bottom: 15px;
  }
  
  .navbar-nav .nav-link.active, 
  .navbar-nav .nav-link:hover {
    color: var(--secondary-color);
  }
  
  .navbar .dropdown-menu {
    background: var(--white-color);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
    border: 0;
    display: inherit;
    opacity: 0;
    min-width: 9rem;
    margin-top: 20px;
    padding: 13px 0 10px 0;
    transition: all 0.3s;
    pointer-events: none;
  }
  
  .navbar .dropdown-menu::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 15px solid var(--white-color);
    position: absolute;
    top: -10px;
    left: 10px;
  }
  
  .navbar .dropdown-item {
    display: inline-block;
    color: var(--p-color);
    font-size: var(--menu-font-size);
    font-weight: var(--font-weight-medium);
    position: relative;
  }
  
  .navbar .dropdown-item.active, 
  .navbar .dropdown-item:active,
  .navbar .dropdown-item:focus, 
  .navbar .dropdown-item:hover {
    background: transparent;
  }
  
  .navbar .dropdown-toggle::after {
    content: "\f282";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-size: var(--menu-font-size);
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    left: 2px;
    border: 0;
  }
  
  @media screen and (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
      opacity: 1;
      margin-top: 0;
      pointer-events: auto;
    }
  }
  
  .navbar-toggler {
    border: 0;
    padding: 0;
    cursor: pointer;
    margin: 0;
    width: 30px;
    height: 35px;
    outline: none;
  }
  
  .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
  }
  
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
  }
  
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
    top: 0;
  }
  
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: rotate(45deg);
  }
  
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(-45deg);
  }
  
  .navbar-toggler .navbar-toggler-icon {
    background: var(--white-color);
    transition: background 10ms 300ms ease;
    display: block;
    width: 30px;
    height: 2px;
    position: relative;
  }
  
  .navbar-toggler .navbar-toggler-icon:before,
  .navbar-toggler .navbar-toggler-icon:after {
    transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
    position: absolute;
    right: 0;
    left: 0;
    background: var(--white-color);
    width: 30px;
    height: 2px;
    content: '';
  }
  
  .navbar-toggler .navbar-toggler-icon::before {
    top: -8px;
  }
  
  .navbar-toggler .navbar-toggler-icon::after {
    top: 8px;
  }
  
  
  /*---------------------------------------
    HERO        
  -----------------------------------------*/
  .hero-section {
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
    min-height: 620px;
    text-align: center;
  }

  
  @media screen and (min-width: 991px) {
    .hero-section {
      height: 100vh;
    }
  }
  
  .hero-section h1 {
    font-family: arial, sans-serif;
    color: var(--white-color);
    text-shadow:  4px 4px rgba(0, 0, 0, 0.5);
    
  }

  .hero-section h1:hover {
    font-family: arial, sans-serif;
    color: var(--white-color);
    /* text-shadow:  4px 4px rgba(0, 0, 0, 0.5); */
      /* .texto h1:hover{ */
        text-shadow:
        0 0 5px rgb(255, 0, 0),
        0 0 10px rgb(250, 0, 0),
        0 0 20px rgb(250, 0, 0),
        0 0 40px rgb(250, 0, 0),
        0 0 80px rgb(250, 0, 0),
        0 0 90px rgb(250, 0, 0),
        0 0 100px rgb(250, 0, 0),
        0 0 150px rgb(250, 0, 0);
        transition:  .5s;
    
  }

  .hero-section p:hover{
    text-shadow:
    0 0 5px rgb(0, 250, 0),
    0 0 10px rgb(0, 250, 0),
    0 0 20px rgb(0, 250, 0),
    0 0 40px rgb(0, 250, 0),
    0 0 80px rgb(0, 250, 0),
    0 0 90px rgb(0, 250, 0),
    0 0 100px rgb(0, 250, 0),
    0 0 150px rgb(0, 250, 0);
    transition: .5s;
  } 
  
  .small-text {
    color: var(--secondary-color);
  }
  
  .hero-section .custom-border-btn {
    border-color: transparent;
  }
  
  .hero-section .container {
    position: relative;
    z-index: 9;
  }
  
  .hero-slides {
    width: 100%;
    height: 100%;
    position: absolute !important;
  }
  
  .hero-capa{
    min-height: 100vh;
    position: relative;
  }
  
  video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .opening-hours-list {
    margin: 0;
    padding: 0;
  }
  
  .opening-hours-list li {
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--btn-font-size);
    font-weight: var(--font-weight-normal);
    margin-bottom: 10px;
  }
  
  .opening-hours-list li .underline {
    background-color: rgba(255, 255, 255, 0.75);
    width: 35%;
    height: 1px;
    margin: auto 15px 0 15px;
  }

    /*---------------------------------------
    OUR MENU              
  -----------------------------------------*/
  .menu-section {
    /* background: url('../images/Pagina_Principal/fondocubo.jpg'); */
    background-color: #000;
    background-position: center;
    background-size: cover;
  }
  
  .menu-block-image {
    border-radius: 100%;
    width: 350px;
    height: 350px;
    object-fit: cover;
    display: block;
    margin: auto;
    cursor: pointer;
  }
  
  /*---------------------------------------
    CONTACT               
  -----------------------------------------*/
  .contact-section {
    /*background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(188, 108, 37, 1)), url('../images/young-female-barista-wear-face-mask-serving-take-away-hot-coffee-paper-cup-consumer-cafe.jpg');*/
    background: linear-gradient(black);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  
  .google-map {
    border-radius: var(--border-radius-medium);
    /*filter: grayscale(100);*/
  }
  /* .google-map:hover{
    border: 850px solid #0ef;
    box-shadow: 0  0 70px #0ef, inset 0 0 20px #0ef;
    transform: scale(1.1);
    transition: .4s;
  }* */


  /*videoyoutube*/
  .video-container {
    background-image: url(../images/mindfly.jpg);
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
  }

  .video-container iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  
  /* SECCION NOSOTROS HECHO POR MI xd*/


.nosotros{
    width: 100%;
    height: 100vh;
    background: linear-gradient( to right, black);
    display: flex;
    justify-content: center;
    align-items: center;
}

.nosotros .contenido img{
    height: auto;
    width: 600px;
    max-width: 100%;
}

.texto{
    width: 550px;
    max-width: 100%;
    padding: 0 10px;
}

.contenido{
    width: 1980px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}

.texto h1{
    color: rgb(255, 255, 255);
    font-size: 85px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.texto h1:hover{
  text-shadow:
  0 0 5px #0ef,
  0 0 10px #0ef,
  0 0 20px #0ef,
  0 0 40px #0ef,
  0 0 80px #0ef,
  0 0 90px #0ef,
  0 0 100px #0ef,
  0 0 150px #0ef;
  transition: .5s;
}

.texto h5{
    color: white;
    font-size: 25px;
    margin-bottom: 25px;
    text-transform: capitalize;
    letter-spacing: 2px;
}

.texto p{
    color: white;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 1px;
    margin-bottom: 45px;
}

button{
    background-color:white ;
    color: black;
    border: 2px solid transparent;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: bold;
}

button:hover{
    transform: scale(1.2);
    background-color: transparent;
    color: white;
    transition: .4s;
    cursor:pointer;
}

@media  screen and (max-width: 1180px) {
    .nosotros{
        width: 100%;
        height: auto;
        padding: 70px 0px;
    }
    
}

@media screen and (max-width: 650px){
    .nosotros .contenido img{
        margin-bottom: 35px;
    }
    .texto h1{
        font-size: 60px;
        margin-bottom: 25px;
    }

}

  /*---------------------------------------
    CUSTOM FORM               
  -----------------------------------------*/
  .custom-form .form-control {
    color: var(--p-color);
    border-radius: var(--border-radius-small);
    margin-bottom: 30px;
    padding-top: 13px;
    padding-bottom: 13px;
    box-shadow: none;
    outline: none;
    transition: all 0.3s;
  }
  
  .custom-form .form-control:hover,
  .custom-form .form-control:focus {
    background: linear-gradient(rgb(216, 206, 206));
    border-color: transparent;
  }
  
  .custom-form .form-label {
    color: var(--white-color);
    font-style: italic;
    margin-bottom: 15px;
  }
  
  .custom-form button[type="submit"] {
    background: white; /*color de boton del contacto*/
    color: #000000;
    border: 2px solid transparent;
    text-decoration: none;
    padding: 10PX 30PX;
    border-radius: 30px;
    font-size: 17px;
    font-weight: bold;
  }
  
  .custom-form button[type="submit"]:hover,
  .custom-form button[type="submit"]:focus {
    transform: scale(1.2);
    background-color: transparent;
    color:white;
    transition: .4s;
    cursor: pointer;
  }
  
  .contact-form .form-control,
  .booking-form .form-control {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.25);
  }
  
  .booking-form .form-control {
    color: var(--white-color);
  }
  
  .custom-form input::-webkit-input-placeholder,
  .custom-form textarea::-webkit-input-placeholder {
     color: var(--white-color);
  }
  
  .booking-form input:-moz-placeholder,
  .booking-form textarea:-moz-placeholder {
    color: var(--white-color);
  }
  
  
  /*---------------------------------------
    SITE FOOTER              
  -----------------------------------------*/
  .site-footer {
    background: linear-gradient(BLACK, BLUE);
    padding-top: 100px;
    padding-bottom: 100px;
  }
  
  .site-footer strong {
    color: var(--white-color);
  }
  
  .site-footer p,
  .site-footer-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--btn-font-size);
  }
  
  .site-footer-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--btn-font-size);
    transition: all 0.3s;
  }
  
  .site-footer-link:hover {
    color: rgba(255, 255, 255, 0.75);
    /* text-decoration: underline; */
  }
  
  .copyright-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--menu-font-size);
  }
  
  .copyright-text a {
      color: rgba(255, 200, 160, 0.75);
  }
  
  
  /*---------------------------------------
    SOCIAL ICON               
  -----------------------------------------*/
  .social-icon {
    margin: 0;
    padding: 0;
  }
  
  .social-icon-item {
    list-style: none;
    display: inline-block;
    vertical-align: top;
  }
  
  .social-icon-link {
    background: white;
    border-radius: var(--border-radius-large);
    color: black;
    font-size: var(--menu-font-size);
    display: block;
    margin: 0 5px;
    text-align: center;
    width: 35px;
    height: 35px;
    line-height: 35px;
    transition: background 0.2s, color 0.2s;
  }
  
  .social-icon-link:hover {
    background: #000000;
    color: white;
  }
  
  .social-icon-link span {
    display: block;
  }
  
  
  /*---------------------------------------
    RESPONSIVE STYLES               
  -----------------------------------------*/
  @media screen and (max-width: 1200px) {
    h1 {
      font-size: 62px;
    }
  }
  
  @media screen and (max-width: 991px) {
    h1 {
      font-size: 54px;
    }
  
    h2 {
      font-size: 36px;
    }
  
    h4 {
      font-size: 28px;
    }
  
    h5 {
      font-size: 20px;
    }
  
    h6 {
      font-size: 18px;
    }
  
    .section-padding {
      padding-top: 50px;
      padding-bottom: 50px;
    }
  
    .hero-section {
      padding-top: 148px;
      padding-bottom: 100px;
    }
  
    .navbar-brand,
    .navbar-brand:hover {
      font-size: var(--h5-font-size);
    }
  
    .navbar-expand-lg .navbar-nav {
      padding-bottom: 20px;
    }
  
    .navbar-expand-lg .navbar-nav .nav-link {
      padding: 0;
      margin-bottom: 0;
    }
  
    .navbar .custom-btn {
      margin-bottom: 10px;
    }
  
    .booking-form {
      padding: 45px;
    }
  
    .contact-section .container {
      width: auto;
      margin-right: 10px;
      margin-left: 10px;
      padding: 35px;
    }
  
    .site-footer {
      padding-top: 50px;
      padding-bottom: 50px;
    }
  }
  
  @media screen and (max-width: 767px) {
    .custom-btn {
      font-size: 14px;
      padding: 12px 20px;
    }
  
    .menu-block-wrap,
    .reviews-block-image-wrap,
    .reviews-block-info {
      padding: 20px;
    }
  }
  
  
  @media screen and (max-width: 578px) {
    .navbar .container,
    .sticky-wrapper.is-sticky .container {
      margin-right: 10px;
      margin-left: 10px;
    }
  }
  
  
  @media screen and (max-width: 480px) {
    h1 {
      font-size: 38px;
    }
  
    h2 {
      font-size: 28px;
    }
  
    h4 {
      font-size: 22px;
    }
  
    h5 {
      font-size: 20px;
    }
  
    .hero-section::after {
      width: 200px;
      height: 200px;
    }
  
    .booking-form {
      padding: 35px;
    }
  
    .opening-hours-list li {
      font-size: 12px;
    }
  
    .reviews-block-image-wrap {
      flex-direction: column;
    }
  
    .reviews-block-image {
      margin-bottom: 15px;
    }
  
    .timeline-container {
      padding-left: 55px;
    }
  
    .timeline-container::before {
      left: 44px;
      border: medium solid white;
      border-width: 15px 15px 15px 0;
      border-color: transparent white transparent transparent;
    }
  
    .timeline-container-left::before,
    .timeline-container-right::before {
      top: 13px;
    }
  }
  
  